7th September 2021

Introduction

This presentation is part of the Developing Data Products Coursera.org course project submission.

It is an R Presentation generated with RStudio.

Plotly plot

library(plotly)
plot_ly(mtcars, x = mtcars$wt, y = mtcars$mpg, mode = "markers")

Plotly plot 2

plot_ly(data =  mtcars, x = mtcars$wt, y = mtcars$mpg, 
        mode = "markers", color = as.factor(mtcars$cyl))

Thanks